public void Post([FromBody] Cats Cats)
 {
     CatsRepository.Insert(Cats);
 }
 public CatsController()
 {
     repository = new CatsRepository();
 }