public static int GetUserByEmailId(string Email)
 {
     return(User_Controller.GetUserIDByEmailId(Email));
 }
 public static int GetUserID(string UserName)
 {
     return(User_Controller.GetUserID(UserName));
 }
 public static int GetUserID()
 {
     return(User_Controller.GetUserID(System.Web.HttpContext.Current.User.Identity.Name));
 }