Ejemplo n.º 1
0
 public AddNewIncomeCommand(IGetTheCurrentCustomerQuery query, Notification notification, IIncomeRepository all_income,
                            ICompanyRepository companys)
 {
     this.query = query;
     this.notification = notification;
     this.all_income = all_income;
     this.companys = companys;
 }
Ejemplo n.º 2
0
 public SaveNewBillCommand(ICompanyRepository companys, IGetTheCurrentCustomerQuery tasks)
 {
     this.companys = companys;
     this.tasks = tasks;
 }