Exemple #1
0
        public Keep Create(Keep newKeep)
        {
            int id = _repo.Create(newKeep);

            newKeep.Id = id;
            return(newKeep);
        }
Exemple #2
0
 internal Keep Create(Keep newKeep)
 {
     return(_repo.Create(newKeep));
 }
Exemple #3
0
 internal Keep Create(Keep newKeep)
 {
     newKeep.Id = _repo.Create(newKeep);
     return(newKeep);
 }
Exemple #4
0
 public Keep Create(Keep keep)
 {
     return(_repo.Create(keep));
 }
 public Keep Create(Keep newKeep)
 {
     newKeep.Id = _repo.Create(newKeep);
     return(newKeep);
 }
Exemple #6
0
 internal Keep Create(Keep keep)
 {
     keep.Id = _kRepo.Create(keep);
     return(keep);
 }
 public Keep Create(Keep newKeep)
 {
     return(_repo.Create(newKeep));
 }
Exemple #8
0
 public Keep Create(Keep newKeep)
 {
     newKeep.Id = _keepsRepository.Create(newKeep);
     return(newKeep);
 }