public ProductController(
     IproductRepstory IproductRepstory,
     ICategoryRepstory categoryRepstory,
     ICityRepstory cityRepstory,
     IArrivalRepostory arrivalRepostory,
     IDepartrueRepostory departrueRepostory)
 {
     this.IproductRepstory   = IproductRepstory;
     this.CategoryRepstory   = categoryRepstory;
     this.arrivalRepostory   = arrivalRepostory;
     this.DepartrueRepostory = departrueRepostory;
     this.CityRepstory       = cityRepstory;
 }
Пример #2
0
 public CitryController(ICityRepstory cityRepstory)
 {
     this.cityRepstory = cityRepstory;
 }