示例#1
0
 public EmployeeBAL(UOWDataContext context, IEmployeeRepository employeeRepository, IMapper mapper)
 {
     this.context            = context;
     this.employeeRepository = employeeRepository;
     this.mapper             = mapper;
 }
示例#2
0
 public Repository(UOWDataContext context)
 {
     this.context = context;
 }
 public EmployeeRepository(UOWDataContext context) : base(context)
 {
     this.context = context;
 }
示例#4
0
 public Seeder(UOWDataContext context)
 {
     this.context = context;
 }
示例#5
0
 public UnitOfWork(UOWDataContext context)
 {
     this.context = context;
     Initialize();
 }