Beispiel #1
0
        public Kit Delete(int id)
        {
            Kit exists = Get(id);

            _repo.Delete(id);
            return(exists);
        }
Beispiel #2
0
 public object Delete(int id)
 {
     _repo.Delete(id);
     return("Successfully Booted");
 }
 internal string Delete(int id)
 {
     Get(id);
     _repo.Delete(id);
     return("Successfully Deleted");
 }
Beispiel #4
0
 public string Delete(int id)
 {
     _repo.Delete(id);
     return("Successfully Booted");
 }