public ExpansViewModels() : base()
 {
     ExpanseTypeService   = new ExpanseTypeService(Entities);
     ExpanseReportService = new ExpanseReportService(Entities);
     CustomerService      = new CustomerService(Entities);
     ProjectService       = new ProjectService(Entities);
 }
Beispiel #2
0
 public ExpansController() : base()
 {
     this.Service              = new ExpansService(Entities);
     this.ProjectService       = new ProjectService(Entities);
     this.UserService          = new UserService(Entities);
     this.ExpanseReportService = new ExpanseReportService(Entities);
     this.ExpanseTypeService   = new ExpanseTypeService(Entities);
 }
 public ExpanseReportController() : base()
 {
     this.Service         = new ExpanseReportService(Entities);
     this.UserService     = new UserService(Entities);
     this.EmployeeService = new EmployeeService(Entities);
 }
 public EmployeeViewModels() : base()
 {
     ExpanseReportService = new ExpanseReportService(Entities);
     PoleService          = new PoleService(Entities);
 }