public ProductsController(OperationContext context, ILog log, ProductsService service)
     : base(context, log)
 {
     _service = service;
 }
 public CustomersService(OperationContext context, ILog log, Func<IUnitOfWork> uow)
     : base(context, log, uow)
 {
 }
Exemple #3
0
 protected BaseService(OperationContext context, ILog log, Func<IUnitOfWork> uow)
 {
     _context = context;
     _log = log;
     _uow = uow;
 }
Exemple #4
0
 public CommonLogErrorApiAttribute(OperationContext context, ILog log)
 {
     _context = context;
     _log = log;
 }
 public ExternalProvider(OperationContext context, ILog log)
 {
     _context = context;
     _log = log;
 }
 public BaseApiController(OperationContext context, ILog log)
 {
     _context = context;
     _log = log;
 }
 public CustomersController(OperationContext context, ILog log, CustomersService service)
     : base(context, log)
 {
     _service = service;
 }
 public ProductsService(OperationContext context, ILog log, Func<IUnitOfWork> uow, IExternalProvider externalProvider)
     : base(context, log, uow)
 {
     _externalProvider = externalProvider;
 }