Пример #1
0
 public bool CreateJobtitle(ChucVuDto cvNhanVien, out string outMsg)
 {
     if (!NhanVienDao.CreateJobtitle(cvNhanVien))
     {
         outMsg = "Tạo chức vụ không thành công";
         return(false);
     }
     else
     {
         outMsg = "Tạo chức vụ thành công";
         return(true);
     }
 }