Beispiel #1
0
 //-------Insert------------------------------------
 public Int64 InsertEmployeeEdu(HRM_EDUCATION objEdu)
 {
     try
     {
         _context.HRM_EDUCATION.AddObject(objEdu);
         _context.SaveChanges();
         return(1);
     }
     catch (Exception ex)
     {
         throw new Exception(ex.Message.ToString());
     }
 }
Beispiel #2
0
 //-------Insert------------------------------------
 public Int64 InsertEmployeeEdu(HRM_EDUCATION objEdu)
 {
     return(objCtx_DAL.InsertEmployeeEdu(objEdu));
 }