Example #1
0
 public IlanController(IAdsService adsService, IPetTypeService petTypeService, ICategoryService categoryService,
                       IPetBreedService petBreedService, IGenderService petGenderSerivce, ICityService cityService, IUserService userService,
                       IWebHostEnvironment env, ICommentService commentService, IAdsDal adsDal)
 {
     _adsService       = adsService;
     _petTypeService   = petTypeService;
     _categoryService  = categoryService;
     _petBreedService  = petBreedService;
     _petGenderSerivce = petGenderSerivce;
     _cityService      = cityService;
     _userService      = userService;
     _env            = env;
     _commentService = commentService;
 }
Example #2
0
 public PetBreedListViewComponent(IPetBreedService petBreedService, ICategoryService categoryService, IPetTypeService petTypeService)
 {
     _petBreedService = petBreedService;
     _categoryService = categoryService;
     _petTypeService  = petTypeService;
 }