Exemplo n.º 1
0
 public AccountController(IDEMO_DAL demoDal, IAuthProvider authProvider, IJobDAL jobDAL, ITaskDAL taskDAL, ILocationDAL locationDAL, IUserDAL userDAL, IHoursDAL hoursDAL, IPayrollDAL payrollDAL, ILogDAL logDAL)
 {
     this.demoDal      = demoDal;
     this.authProvider = authProvider;
     this.jobDAL       = jobDAL;
     this.taskDAL      = taskDAL;
     this.locationDAL  = locationDAL;
     this.userDAL      = userDAL;
     this.hoursDAL     = hoursDAL;
     this.payrollDAL   = payrollDAL;
     this.logDAL       = logDAL;
 }
Exemplo n.º 2
0
 public DemoController(IDEMO_DAL demoDal)
 {
     this.demoDal = demoDal;
 }