Ejemplo n.º 1
0
        public bool Create(ChuDeModel model)
        {
            string msgError = "";

            try
            {
                var result = _dbHelper.ExecuteScalarSProcedureWithTransaction(out msgError, "sp_chude_create",
                                                                              "@tenchude", model.tenchude);
                if ((result != null && !string.IsNullOrEmpty(result.ToString())) || !string.IsNullOrEmpty(msgError))
                {
                    throw new Exception(Convert.ToString(result) + msgError);
                }
                return(true);
            }
            catch (Exception ex)
            {
                throw ex;
            }
        }
Ejemplo n.º 2
0
 public bool Update(ChuDeModel model)
 {
     return(_res.Update(model));
 }
Ejemplo n.º 3
0
 public bool Create(ChuDeModel model)
 {
     return(_res.Create(model));
 }
Ejemplo n.º 4
0
 public ChuDeModel UpdateChuDe([FromBody] ChuDeModel model)
 {
     _ChuDeBusiness.Update(model);
     return(model);
 }