public static int UpdateImage(ImageFilter IFilt) { MaadSunDB MDB = new MaadSunDB(); int U = MDB.UpdateImage(IFilt); return(U); }
public static int DeleteImageByUserID(int UserID) { MaadSunDB MDB = new MaadSunDB(); int U = MDB.DeleteImageByUserID(UserID); return(U); }
public static int DeleteImageByImagename(string Imagename) { MaadSunDB MDB = new MaadSunDB(); int U = MDB.DeleteImageByImagename(Imagename); return(U); }
public static int UpdateUser(UserFilter UFilt) { MaadSunDB MDB = new MaadSunDB(); int U = MDB.UpdateUser(UFilt); return(U); }
public static UserList GETUSER(int ID) { MaadSunDB MDB = new MaadSunDB(); UserList UList = new UserList(); UList = MDB.GetUserbyID(ID); return(UList); }
public static UserList GETFILTEREDUSER(UserFilter UFilt) { MaadSunDB MDB = new MaadSunDB(); UserList Ulist = new UserList(); Ulist = MDB.GetUsers(UFilt); return(Ulist); }
public static SubCategoryList GetFilteredSubCategory(SubCategoryFilter SCFilter) { MaadSunDB MDB = new MaadSunDB(); return(MDB.GetFilteredSubCategories(SCFilter)); }
public static CategoryList GetCategoryList() { MaadSunDB MDB = new MaadSunDB(); return(MDB.GetCategories()); }
public static ImageList GetFilteredImage(ImageFilter IFilt) { MaadSunDB MDB = new MaadSunDB(); return(MDB.GetFilteredImage(IFilt)); }