public static List <Product> GetAll() { try { return(DAL_Product.GetAll()); } catch (Exception) { throw; } }
public static void Update(Product model) { try { DAL_Product.Update(model); } catch (Exception) { throw; } }
public static void Create(Product model, int EnglishLanguageID) { try { DAL_Product.Create(model, EnglishLanguageID); } catch (Exception ex) { throw; } }
public static Product GetProduct(int productID) { return(DAL_Product.GetProduct(productID)); }