private void init()
 {
     billdao = new BillDao();
     dataGrid2.SelectionMode = DataGridSelectionMode.Single;
     dataGrid2.IsReadOnly    = true;
     getAllSell();
 }
Example #2
0
 public BillMgr(IBillDao entityDao,
                IBillDetailMgr billDetailMgr,
                IActingBillMgr actingBillMgr,
                INumberControlMgr numberControlMgr,
                IUserMgr userMgr,
                ILocationLotDetailMgr locationLotDetailMgr,
                IEntityPreferenceMgr entityPreferenceMgr,
                IPlannedBillMgr plannedBillMgr,
                IBillTransactionMgr billTransactionMgr,
                ICriteriaMgr criteriaMgr,
                IPriceListDetailMgr priceListDetailMgr)
     : base(entityDao)
 {
     this.actingBillMgr        = actingBillMgr;
     this.numberControlMgr     = numberControlMgr;
     this.billDetailMgr        = billDetailMgr;
     this.userMgr              = userMgr;
     this.locationLotDetailMgr = locationLotDetailMgr;
     this.entityPreferenceMgr  = entityPreferenceMgr;
     this.plannedBillMgr       = plannedBillMgr;
     this.billTransactionMgr   = billTransactionMgr;
     this.criteriaMgr          = criteriaMgr;
     this.priceListDetailMgr   = priceListDetailMgr;
 }
Example #3
0
 public BillMgr(IBillDao entityDao,
     IBillDetailMgr billDetailMgr,
     IActingBillMgr actingBillMgr,
     INumberControlMgr numberControlMgr,
     IUserMgr userMgr,
     ILocationLotDetailMgr locationLotDetailMgr,
       IEntityPreferenceMgr entityPreferenceMgr,
     IPlannedBillMgr plannedBillMgr,
     IBillTransactionMgr billTransactionMgr,
     ICriteriaMgr criteriaMgr,
     IPriceListDetailMgr priceListDetailMgr)
     : base(entityDao)
 {
     this.actingBillMgr = actingBillMgr;
     this.numberControlMgr = numberControlMgr;
     this.billDetailMgr = billDetailMgr;
     this.userMgr = userMgr;
     this.locationLotDetailMgr = locationLotDetailMgr;
     this.entityPreferenceMgr = entityPreferenceMgr;
     this.plannedBillMgr = plannedBillMgr;
     this.billTransactionMgr = billTransactionMgr;
     this.criteriaMgr = criteriaMgr;
     this.priceListDetailMgr = priceListDetailMgr;
 }
Example #4
0
 public BillService(IBillDao dao)
 {
     this.dao = dao;
 }
Example #5
0
 public BillBaseMgr(IBillDao entityDao)
 {
     this.entityDao = entityDao;
 }
Example #6
0
 public BillBaseMgr(IBillDao entityDao)
 {
     this.entityDao = entityDao;
 }