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