示例#1
0
 public ClienteExiste GetClienteExiste(string nroDocumento)
 {
     using (var db = new ApplicationDbContextSGO())
     {
         var response = db.usp_LisClienteExiste(nroDocumento).ToList();
         return(response.SingleOrDefault());
     }
 }