예제 #1
0
        public bool Update(TapChiModel model)
        {
            string msgError = "";

            try
            {
                var result = _dbHelper.ExecuteScalarSProcedureWithTransaction(out msgError, "tapchi_update",
                                                                              "@ID_TapChi", model.ID_TapChi,
                                                                              "@ID_Loai", model.ID_Loai,
                                                                              "@Ten_TapChi", model.Ten_TapChi,
                                                                              "@DonVi", model.DonVi,
                                                                              "@QuocGia", model.QuocGia);
                if ((result != null && !string.IsNullOrEmpty(result.ToString())) || !string.IsNullOrEmpty(msgError))
                {
                    throw new Exception(Convert.ToString(result) + msgError);
                }
                return(true);
            }
            catch (Exception ex)
            {
                throw ex;
            }
        }
예제 #2
0
 public bool Update(TapChiModel model)
 {
     return(_res.Update(model));
 }
예제 #3
0
 public bool Create(TapChiModel model)
 {
     return(_res.Create(model));
 }
예제 #4
0
 public TapChiModel UpdateUser([FromBody] TapChiModel model)
 {
     _TapChiBLL.Update(model);
     return(model);
 }
예제 #5
0
 public TapChiModel CreateItem([FromBody] TapChiModel model)
 {
     _TapChiBLL.Create(model);
     return(model);
 }