Example #1
0
 public void Update(Showroom_API entity)
 {
     _service.Update(entity);
 }
 public void Update(Showroom_API entity)
 {
     _repo.Update(entity.ToDAL());
 }
Example #3
0
 public void Add(Showroom_API entity)
 {
     _service.Add(entity);
 }
 public void Add(Showroom_API entity)
 {
     _repo.Add(entity.ToDAL());
 }