Esempio n. 1
0
 public AssetLocationUnitOfWork(AssetDbContext context)
 {
     _context      = context;
     AssetLocation = new AssetLocationRepository(_context);
 }
Esempio n. 2
0
 public AssetLocationManager(AssetLocationRepository assetLocationRepository)
 {
     _assetLocationRepository = assetLocationRepository;
 }
 public AssetLocationManager()
 {
     _Repository = new AssetLocationRepository();
 }
 public AssetLocationManager()
 {
     _organizationRepository  = new OrganizationRepository();
     _branchRepository        = new BranchRepository();
     _assetLocationRepository = new AssetLocationRepository();
 }