Пример #1
0
 public FactorsController(ISalesFactorRepository repository, IUnitOfWork unitOfWork, DokanDbContext context, IMapper mapper)
 {
     this.repository = repository;
     this.unitOfWork = unitOfWork;
     this.context    = context;
     this.mapper     = mapper;
 }
Пример #2
0
 public MeToYouController(IUnitOfWork unitOfWork, DokanDbContext context)
 {
     this.unitOfWork = unitOfWork;
     this.context    = context;
 }
Пример #3
0
 public ReceivedMeToYouController(DokanDbContext context)
 {
     this.context = context;
 }
Пример #4
0
 public CustomersController(ICustomerRepository customerRepository, DokanDbContext context, IMapper mapper)
 {
     this.customerRepository = customerRepository;
     this.context            = context;
     this.mapper             = mapper;
 }