Ejemplo n.º 1
0
 internal void Add <J> (J iEntity,
                        PoSBaseRepository <J> iRepo) where J : class, IModel, new()
 {
     iRepo.Add(iEntity);
 }
Ejemplo n.º 2
0
 internal void Update <J> (J iEntity,
                           PoSBaseRepository <J> iRepo) where J : class, IModel, new()
 {
     iRepo.Update(iEntity);
 }
Ejemplo n.º 3
0
 public void Delete <J> (J iEntity,
                         PoSBaseRepository <J> iRepo) where J : class, IModel, new()
 {
     iRepo.Delete(iEntity);
 }