public string Obtener(int Id) { MSListaPrecio model = _ListaPrecioRepositorio.Get(Id); if (model == null) { throw new FaultException(MENSAJE_NO_DISPONIBLE); } return(new JavaScriptSerializer().Serialize(model)); //return model; }
public MSListaPrecio Obtener(int Id) { MSListaPrecio model = _ListaPrecioRepositorio.Get(Id); if (model == null) { throw new ValidationException(MENSAJE_NO_DISPONIBLE); } return(model); }