/// <summary>
 /// Contructor from the class.
 /// </summary>
 public CustumerController(ICustumerService service, ILoadDataBase ldb)
 {
     _service = service;
     ldb.LoadCustumer();
 }
示例#2
0
 public CustumerController(ICustumerService custumerService)
 {
     _custumerService = custumerService;
 }