Exemple #1
0
 public OrderController(IBizlunchService Service)
 {
     //  this.Log = log;
     this._Service = Service;
 }
Exemple #2
0
 public AccountController(IBizlunchService Service)
 {
     //  this.Log = log;
     this._Service = Service;
 }
Exemple #3
0
 public HomeController(IBizlunchService service)
 {
     _Service = service;
 }
Exemple #4
0
 public RestaurantController(IBizlunchService service)
 {
     _Service = service;
 }
Exemple #5
0
 public MessageController(IBizlunchService Service)
 {
     //  this.Log = log;
     this._Service = Service;
 }
 public OrderController(IBizlunchService service)
 {
     _Service = service;
 }