9 lines
164 B
C#
9 lines
164 B
C#
using RhSolutions.Models;
|
|
|
|
namespace RhSolutions.Api.Services
|
|
{
|
|
public interface IPricelistParser
|
|
{
|
|
public List<Product> GetProducts(HttpContext context);
|
|
}
|
|
} |