public FactorsController(ISalesFactorRepository repository, IUnitOfWork unitOfWork, DokanDbContext context, IMapper mapper)
 {
     this.repository = repository;
     this.unitOfWork = unitOfWork;
     this.context    = context;
     this.mapper     = mapper;
 }
 public MeToYouController(IUnitOfWork unitOfWork, DokanDbContext context)
 {
     this.unitOfWork = unitOfWork;
     this.context    = context;
 }
Esempio n. 3
0
 public ReceivedMeToYouController(DokanDbContext context)
 {
     this.context = context;
 }
Esempio n. 4
0
 public CustomersController(ICustomerRepository customerRepository, DokanDbContext context, IMapper mapper)
 {
     this.customerRepository = customerRepository;
     this.context            = context;
     this.mapper             = mapper;
 }