예제 #1
0
 public SharedReqRepository(RIC_DBEntities context)
     : base(context) // call the base constructor
 {
 }
예제 #2
0
 public IncentiveRepository(RIC_DBEntities context)
     : base(context) // call the base constructor
 {
 }
예제 #3
0
 public EmployeeRepository(RIC_DBEntities context)
     : base(context) // call the base constructor
 {
 }
예제 #4
0
 public Job_ReportRepository(RIC_DBEntities context)
     : base(context)                     // call the base constructor
 {
 }
예제 #5
0
 public RoleRepositery(RIC_DBEntities context)
     : base(context)
 {
 }                      // call the base constructor
예제 #6
0
 public CallStatisticsRepository(RIC_DBEntities context)
     : base(context) // call the base constructor
 {
 }
예제 #7
0
 public UnitOfWork()
 {
     this.context = new RIC_DBEntities();
 }
예제 #8
0
 public SubmissionDailyRepository(RIC_DBEntities context)
     : base(context) // call the base constructor
 {
 }
예제 #9
0
 public GenericRepositiory(RIC_DBEntities context)
 {
     this.context = context;// create the object of context.
     this.dbSet   = context.Set <TEntity>();
 }