public HomeController(IClienteleRepository clientele,
                       ICategoryForTabRepository categoryForTab,
                       ICategoryForInfoRepository infoRepository,
                       IContactInfoRepository contact)
 {
     _client  = clientele;
     _catInfo = infoRepository;
     _catTab  = categoryForTab;
     _con     = contact;
 }
 public ClientelesController(IClienteleRepository client)
 {
     _client = client;
 }