public TestController(ICentralRepository centralRepo, IMySampleRepo repo)
 {
     _centralRepo = centralRepo;
 }
 public HomeController(IMySampleRepo repo)
 {
     Debug.WriteLine("CALLED");
     _repo = repo;
 }