Ejemplo n.º 1
0
 public MonthsController(IMonthDal monthDal, MonthHandler monthHandler)
 {
     _monthDal     = monthDal;
     _monthHandler = monthHandler;
 }
Ejemplo n.º 2
0
 public MonthHandler(IMonthDal monthDal)
 {
     _monthDal = monthDal;
 }
Ejemplo n.º 3
0
 public MonthManager(IMonthDal monthDal)
 {
     _monthDal = monthDal;
 }