public static void Delete(int id) { var serviceWse = ServiceManager.GetService <CommentService>(); serviceWse.Delete(id); }
public static IList <Product> RetrieveProducts() { var service = ServiceManager.GetService <RequestService>(); return(RetrieveProducts(service.RetrieveProducts(), Requester.Logged)); }
public static bool IsRequesterAttached(int requestID, int requesterID) { var service = ServiceManager.GetService <RequestService>(); return(service.IsRequesterAttached(requestID, requesterID)); }
public static bool ForgotPassword(string email) { var service = ServiceManager.GetService <RequesterService>(); return(service.ForgetPassword(email)); }