Item Modifier added
This commit is contained in:
@ -1,21 +0,0 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
using System.ServiceModel;
|
||||
using System.Data.SqlClient;
|
||||
|
||||
namespace Tanshu.Accounts.Contracts
|
||||
{
|
||||
public interface IProductBI
|
||||
{
|
||||
bool Insert(ProductBO product);
|
||||
bool Update(ProductBO product);
|
||||
bool Delete(Guid productID);
|
||||
ProductBO GetProductFromName(string nameAndUnits);
|
||||
ProductBO GetProduct(Guid productID);
|
||||
decimal GetProductStock(DateTime date, Guid productID, Guid? voucherID);
|
||||
List<ProductDisplayBO> GetProducts();
|
||||
List<ProductDisplaySmallBO> GetFilteredProducts(Dictionary<string, string> filter);
|
||||
List<ProductDisplaySmallBO> GetProducts(Guid productTypeID);
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,18 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
using System.ServiceModel;
|
||||
|
||||
using System.Data.SqlClient;
|
||||
|
||||
namespace Tanshu.Accounts.Contracts
|
||||
{
|
||||
public interface IProductGroupBI
|
||||
{
|
||||
ProductGroupBO GetProductGroup(Guid productGroupID);
|
||||
ProductGroupBO GetProductGroupByName(string name);
|
||||
bool Insert(ProductGroupBO productGroup);
|
||||
bool Update(ProductGroupBO productGroup);
|
||||
List<ProductGroupBO> GetProductGroups();
|
||||
}
|
||||
}
|
||||
@ -1,19 +0,0 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
using System.ServiceModel;
|
||||
|
||||
using System.Data.SqlClient;
|
||||
|
||||
namespace Tanshu.Accounts.Contracts
|
||||
{
|
||||
public interface IProductTypeBI
|
||||
{
|
||||
ProductTypeBO GetProductType(Guid productTypeID);
|
||||
|
||||
ProductTypeBO GetProductTypeByName(string name);
|
||||
bool Insert(ProductTypeBO productType);
|
||||
bool Update(ProductTypeBO productType);
|
||||
List<ProductTypeBO> GetProductTypes();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user