Ejemplo n.º 1
0
 public async Task Insert(DistritoDTO entityDTO)
 {
     var entity =
         Builders.GenericBuilder.builderDTOEntity <TDistrito, DistritoDTO>(entityDTO);
     await repository.Save(entity);
 }
Ejemplo n.º 2
0
 public bool Save(Distrito entity)
 {
     return(distritorepository.Save(entity));
 }