Пример #1
0
 public BillInfoService()
 {
     this.billInfo = new BillInfoRepository(new QuanLyQuanAnEntities());
 }
Пример #2
0
 public BillInfoService(IBillInfoRepository <BillInfo> repository)
 {
     this._repository = repository;
 }
 public BillInfoService()
 {
     this.billInfo = new BillInfoRepository(new QuanLyQuanAnModel());
 }
 public BillInfoService()
 {
     this.billInfo = new BillInfoRepository(new QuanLyQuanAnDbContext());
 }
Пример #5
0
 public BillInfoService(IUnitOfWork unitOfWork, IBillInfoRepository billInfoRepository)
     : base(unitOfWork, billInfoRepository)
 {
     this.unitOfWork         = unitOfWork;
     this.billInfoRepository = billInfoRepository;
 }