Example #1
0
 public CheckListContext(ICheckListRespository CheckListRespository,
                         StoreContext storeContext,
                         DefaultDbTransaction defaultDbTransaction,
                         ICheckListGoodsRespository checkListGoodsRespository)
 {
     _checkListRespository      = CheckListRespository;
     _storeContext              = storeContext;
     _defaultDbTransaction      = defaultDbTransaction;
     _checkListGoodsRespository = checkListGoodsRespository;
 }
Example #2
0
 public PrescriptionContext(IPrescriptionRespository prescriptionRespository,
                            StoreContext storeContext,
                            DefaultDbTransaction defaultDbTransaction,
                            IPrescriptionGoodsRespository prescriptionGoodsRespository)
 {
     _prescriptionRespository      = prescriptionRespository;
     _storeContext                 = storeContext;
     _defaultDbTransaction         = defaultDbTransaction;
     _prescriptionGoodsRespository = prescriptionGoodsRespository;
 }
Example #3
0
 public StoreInoutContext(IStoreInoutRespository StoreInoutRespository,
                          StoreContext storeContext,
                          StoreInoutGoodsContext storeInoutGoodsContext,
                          DefaultDbTransaction defaultDbTransaction,
                          IStoreChangeTypeRespository storeChangeTypeRespository)
 {
     _StoreInoutRespository      = StoreInoutRespository;
     _storeContext               = storeContext;
     _storeInoutGoodsContext     = storeInoutGoodsContext;
     _defaultDbTransaction       = defaultDbTransaction;
     _storeChangeTypeRespository = storeChangeTypeRespository;
 }
Example #4
0
 public PurchaseGoodsContext(IPurchaseGoodsRespository purchaseGoodsRespositoryy,
                             StoreContext storeContext,
                             HospitalGoodsClientService hospitalGoodsClientContext,
                             DefaultDbTransaction defaultDbTransaction,
                             StoreRecordContext storeRecordContext,
                             HospitalDepartmentService hospitalDepartmentContext,
                             PurchaseGoodsBillnoContext purchaseGoodsBillnoContext,
                             IMediator mediator)
 {
     _purchaseGoodsRespository   = purchaseGoodsRespositoryy;
     _storeContext               = storeContext;
     _hospitalGoodsClientContext = hospitalGoodsClientContext;
     _storeRecordContext         = storeRecordContext;
     _hospitalDepartmentContext  = hospitalDepartmentContext;
     _defaultDbTransaction       = defaultDbTransaction;
     _purchaseGoodsBillnoContext = purchaseGoodsBillnoContext;
     _mediator = mediator;
 }