Example #1
0
 public EmplonomyUserRepository(EmplonomyContext context, ICryptoService cryptoService, IRoleRepository roleReposistory)
     : base(context)
 {
     this._context    = context;
     _cryptoService   = cryptoService;
     _roleReposistory = roleReposistory;
 }
Example #2
0
 public AddressTypeRepository(EmplonomyContext context)
     : base(context)
 {
     this._context = context;
 }
Example #3
0
 public OrganisationManagerRepository(EmplonomyContext context)
     : base(context)
 {
     this._context = context;
 }
Example #4
0
 public SendSmsStatusRepository(EmplonomyContext context)
     : base(context)
 {
     this._context = context;
 }
Example #5
0
 public DepartmentRepository(EmplonomyContext context)
     : base(context)
 {
     this._context = context;
 }
Example #6
0
 public UserAddressRepository(EmplonomyContext context)
     : base(context)
 {
     _context = context;
 }
Example #7
0
 public UserRoleRepository(EmplonomyContext context, IRoleRepository roleReposistory, IEmplonomyUserRepository userReposistory)
     : base(context)
 {
     _roleReposistory = roleReposistory;
     _userReposistory = userReposistory;
 }
Example #8
0
 public EntityBaseRepository(EmplonomyContext context)
 {
     _context = context;
 }
Example #9
0
 public ProvisionedRepository(EmplonomyContext context)
     : base(context)
 {
     this._context = context;
 }
Example #10
0
 public RoleRepository(EmplonomyContext context)
     : base(context)
 {
     this._context = context;
 }
Example #11
0
 public ShortMessageRepository(EmplonomyContext context)
     : base(context)
 {
     this._context = context;
 }
Example #12
0
 public LoggingRepository(EmplonomyContext context)
     : base(context)
 {
 }
Example #13
0
 public LocationRepository(EmplonomyContext context)
     : base(context)
 {
     this._context = context;
 }
Example #14
0
 public PasswordQsBankRepository(EmplonomyContext context)
     : base(context)
 {
     this._context = context;
 }