11 lines
278 B
C#
11 lines
278 B
C#
|
using GasStation.Entities;
|
|||
|
|
|||
|
namespace GasStation.Repositories;
|
|||
|
|
|||
|
public interface ISellingRepository
|
|||
|
{
|
|||
|
IEnumerable<Selling> ReadSelling(DateTime? dateTime = null, int? count = null, int? productID = null, int? gasmanID = null);
|
|||
|
|
|||
|
void CreateSelling(Selling selling);
|
|||
|
}
|