Example #1
0
 public RepositoryBase(CozaStoreContext repositoryContext)
 {
     CozaStoreContext = repositoryContext;
 }
 public DeviceLocationHistoryAuditsController(CozaStoreContext context)
 {
     _context = context;
 }
Example #3
0
 public UserRepository(CozaStoreContext cozaContext)
     : base(cozaContext)
 {
 }
 public DeviceRepository(CozaStoreContext cozaContext)
     : base(cozaContext)
 {
 }
 public CustomersController(CozaStoreContext context)
 {
     _context = context;
 }
Example #6
0
 public LocationRepository(CozaStoreContext cozaContext)
     : base(cozaContext)
 {
 }
 public AuthRepository(CozaStoreContext context)
 {
     _context = context;
 }
Example #8
0
 public RepositoryWrapper(CozaStoreContext cozastoreContext)
 {
     _cozastoreContext = cozastoreContext;
 }