public MasterCheckListCategoryRepository(HCMasterContext context) : base(context)
 {
     _context = context;
 }
Exemple #2
0
 public MasterRepositoryBase(HCMasterContext context)
 {
     this.context = context;
     entities     = context.Set <T>();
 }
Exemple #3
0
 public MasterOrganizationRepository(HCMasterContext masterContext, HCOrganizationContext context) : base(masterContext)
 {
     this._masterContext = masterContext;
     _context            = context;
 }
Exemple #4
0
 public MasterQuestionnaireCategoryRepository(HCMasterContext context) : base(context)
 {
     this._context = context;
 }
Exemple #5
0
 public MasterQuestionaireSectionItemRepository(HCMasterContext context) : base(context)
 {
     this._context = context;
 }
 public OrganizationDatabaseRepository(HCMasterContext context) //: base(context)
 {
     this._context = context;
 }
 public MasterQuestionnaireBenchmarkRangeRepository(HCMasterContext masterContext) : base(masterContext)
 {
     this._masterContext = masterContext;
 }
 public MasterQuestionnaireDocumentRepository(HCMasterContext context) : base(context)
 {
     this._context = context;
 }
 public MasterDataRepository(HCMasterContext masterContext, HCOrganizationContext organizationContext)
 {
     this._masterContext       = masterContext;
     this._organizationContext = organizationContext;
 }