public StyleController(IStyleRepo styleRepo)
 {
     _styleRepo = styleRepo;
 }
Example #2
0
 public HomeController(IStyleRepo styleRepo, IGeneralRepo <Category> categoryRepo)
 {
     _styleRepo    = styleRepo;
     _categoryRepo = categoryRepo;
 }