Пример #1
0
 public CompanyService(ISpecialUOW uow, IMapper mapper, IUserIdentity identity) : base(uow)
 {
     this.mapper   = mapper;
     this.identity = identity;
 }
Пример #2
0
 public AddressTypeService(ISpecialUOW uow) : base(uow)
 {
     this.uow = uow;
 }
 public CreateFranchiseService(ISpecialUOW uow, IMapper mapper) : base(uow)
 {
     this.uow    = uow;
     this.mapper = mapper;
 }
Пример #4
0
 public BaseCodeService(ISpecialUOW uow) : base(uow)
 {
     BaseCodeTables = InitBaseCodes();
 }
Пример #5
0
 public ResolvedUser(IAppUsers userResultType, IUserManagerService usrMngService, ISpecialUOW uow)
 {
     this.userResultType = userResultType ?? UnauthorisedUser.Instance;
     this.usrMngService  = usrMngService;
     this.uow            = uow;
 }
 public SpecialAddressHelper(ISpecialUOW uow, IEnumerable <SP.ISpecial> specials)
 {
     this.specials = specials;
     this.uow      = uow;
 }