public static bool insertcomment(int postid, int customerid, string postcomment, string customer_name, int userid)
 {
     return(PostDBManager.insertcomment(postid, customerid, postcomment, customer_name, userid));
 }
 public static Followers CheckFollow(string v, int customerid)
 {
     return(PostDBManager.CheckFollow(v, customerid));
 }
 public static List <Posts> GetallUsersPosts(int customerid)
 {
     return(PostDBManager.GetallUsersPosts(customerid));
 }
 public static bool deletepost(int id, int customerid)
 {
     return(PostDBManager.deleteposts(id, customerid));
 }
 public static int insertpost(int customerid, string postcontent, int postbooks, string customer_name)
 {
     return(PostDBManager.insertpost(customerid, postcontent, postbooks, customer_name));
 }
 public static bool UpdatePostImages(List <string> images, int post_id)
 {
     return(PostDBManager.UpdatePostImages(images, post_id));
 }
 public static List <Posts> GetallPostsByUsername(string v)
 {
     return(PostDBManager.GetallPostsByUsername(v));
 }