public static IQueryable <T> Read <T>(Expression <Func <T, bool> > where, ISave repo) where T : class { return(BaseModelCRUD.Read <T>(where, repo)); }
public static IQueryable <T> Read <T>(Type type, Expression <Func <T, bool> > where, ISave repo) { return(BaseModelCRUD.Read <T>(type, where, repo)); }
public static void Create(ModelPostModel model) { BaseModelCRUD.Create(model); }
public static void Create(object input) { BaseModelCRUD.Create(input); }
public static void Create <T>(T input) where T : class { BaseModelCRUD.Create <T>(input); }
public static void Update(BaseViewModel model) { BaseModelCRUD.Update(model); }
public static void Update(ModelPostModel model) { BaseModelCRUD.Update(model); }