forked from sanchezvem/PyroFetes
Made an update on database and added CreatingDeliveryNotee
This commit is contained in:
5
PyroFetes/Repositories/DeliveryNotesRepository.cs
Normal file
5
PyroFetes/Repositories/DeliveryNotesRepository.cs
Normal file
@@ -0,0 +1,5 @@
|
||||
using PyroFetes.Models;
|
||||
|
||||
namespace PyroFetes.Repositories;
|
||||
|
||||
public class DeliveryNotesRepository(PyroFetesDbContext pyrofetesContext, AutoMapper.IMapper mapper) : PyrofetesRepository<DeliveryNote>(pyrofetesContext, mapper);
|
||||
5
PyroFetes/Repositories/ProductDeliveriesRepository.cs
Normal file
5
PyroFetes/Repositories/ProductDeliveriesRepository.cs
Normal file
@@ -0,0 +1,5 @@
|
||||
using PyroFetes.Models;
|
||||
|
||||
namespace PyroFetes.Repositories;
|
||||
|
||||
public class ProductDeliveriesRepository(PyroFetesDbContext pyrofetesContext, AutoMapper.IMapper mapper) : PyrofetesRepository<ProductDelivery>(pyrofetesContext, mapper);
|
||||
Reference in New Issue
Block a user