public string InsertEmployeeFiles(string EmpPhoto, string EmpAadhar, string EmpPAN, User usersObj, byte[] EmpphotoBytes)
 {
     try
     {
         string message = usersDAL_obj.InsertEmployeeFiles(EmpPhoto, EmpAadhar, EmpPAN, usersObj, EmpphotoBytes);
         return(message);
     }
     catch (Exception ex)
     {
         return(ex.Message);
     }
 }