Example #1
0
 public UnitOfWork(bbuContext context)
 {
     _context             = context;
     Addresses            = new AddressRepository(_context);
     AppUsers             = new AppUserRepository(_context);
     Banks                = new BankRepository(_context);
     BankAccounts         = new BankAccountRepository(_context);
     Cemeteries           = new CemeteryRepository(_context);
     Credentials          = new CredentialsRepository(_context);
     Deceaseds            = new DeceasedRepository(_context);
     Doctors              = new DoctorRepository(_context);
     Employees            = new EmployeeRepository(_context);
     Files                = new FileRepository(_context);
     Funerals             = new FuneralRepository(_context);
     FuneralDocuments     = new FuneralDocumentRepository(_context);
     Genders              = new GenderRepository(_context);
     HomeAffairsOffices   = new HomeAffairsOfficeRepository(_context);
     HomeAffairsOfficers  = new HomeAffairsOfficerRepository(_context);
     Hospitals            = new HospitalRepository(_context);
     Informants           = new InformantRepository(_context);
     Members              = new MemberRepository(_context);
     Months               = new MonthRepository(_context);
     Mortuaries           = new MortuaryRepository(_context);
     NextOfKins           = new NextOfKinRepository(_context);
     NumberConfigurations = new NumberConfigurationRepository(_context);
     Payments             = new PaymentRepository(_context);
     PaymentPeriods       = new PaymentPeriodRepository(_context);
     People               = new PersonRepository(_context);
     PurchaseItems        = new PurchaseItemRepository(_context);
     Settings             = new SettingRepository(_context);
     States               = new StateRepository(_context);
     Suppliers            = new SupplierRepository(_context);
     Tasks                = new TaskRepository(_context);
     Years                = new YearRepository(_context);
 }
Example #2
0
 public BankRepository(bbuContext context) : base(context)
 {
 }
Example #3
0
 public FileRepository(bbuContext context) : base(context)
 {
 }
 public NumberConfigurationRepository(bbuContext context) : base(context)
 {
 }
Example #5
0
 public YearRepository(bbuContext context) : base(context)
 {
 }
Example #6
0
 public AppUserRepository(bbuContext context) : base(context)
 {
 }
Example #7
0
 public MemberRepository(bbuContext context) : base(context)
 {
 }
 public FuneralDocumentRepository(bbuContext context) : base(context)
 {
 }
 public BankAccountRepository(bbuContext context) : base(context)
 {
 }
Example #10
0
 public StateRepository(bbuContext context) : base(context)
 {
 }
Example #11
0
 public AddressRepository(bbuContext context) : base(context)
 {
 }
Example #12
0
 public PersonRepository(bbuContext context) : base(context)
 {
 }
Example #13
0
 public DoctorRepository(bbuContext context) : base(context)
 {
 }
Example #14
0
 public HospitalRepository(bbuContext context) : base(context)
 {
 }
Example #15
0
 public MortuaryRepository(bbuContext context) : base(context)
 {
 }
Example #16
0
 public GenderRepository(bbuContext context) : base(context)
 {
 }
Example #17
0
 public CemeteryRepository(bbuContext context) : base(context)
 {
 }
Example #18
0
 public DeceasedRepository(bbuContext context) : base(context)
 {
 }
 public HomeAffairsOfficerRepository(bbuContext context) : base(context)
 {
 }
Example #20
0
 public SettingRepository(bbuContext context) : base(context)
 {
 }
Example #21
0
 public FuneralRepository(bbuContext context) : base(context)
 {
 }
Example #22
0
 public TaskRepository(bbuContext context) : base(context)
 {
 }
Example #23
0
 public InformantRepository(bbuContext context) : base(context)
 {
 }
Example #24
0
 public NextOfKinRepository(bbuContext context) : base(context)
 {
 }
Example #25
0
 public SupplierRepository(bbuContext context) : base(context)
 {
 }
Example #26
0
 public PurchaseItemRepository(bbuContext context) : base(context)
 {
 }
Example #27
0
 public EmployeeRepository(bbuContext context) : base(context)
 {
 }
 public PaymentPeriodRepository(bbuContext context) : base(context)
 {
 }
 public CredentialsRepository(bbuContext context) : base(context)
 {
 }
Example #30
0
 public MonthRepository(bbuContext context) : base(context)
 {
 }