parent
bcb8cf9102
commit
f2f6437e1b
@ -0,0 +1,12 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace WinformDevFramework.IRepository
|
||||
{
|
||||
public interface Iw_CustomerRepository:IBaseRepository<w_Customer>
|
||||
{
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,12 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace WinformDevFramework.IRepository
|
||||
{
|
||||
public interface IW_GoodsRepository:IBaseRepository<W_Goods>
|
||||
{
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,12 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace WinformDevFramework.IRepository
|
||||
{
|
||||
public interface Iw_SettlementAccountRepository:IBaseRepository<w_SettlementAccount>
|
||||
{
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,12 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace WinformDevFramework.IRepository
|
||||
{
|
||||
public interface Iw_SupplierRepository:IBaseRepository<w_Supplier>
|
||||
{
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,12 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace WinformDevFramework.IRepository
|
||||
{
|
||||
public interface Iw_WarehouseRepository:IBaseRepository<w_Warehouse>
|
||||
{
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,12 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace WinformDevFramework.IRepository
|
||||
{
|
||||
public interface Iw_BuyDetailRepository:IBaseRepository<w_BuyDetail>
|
||||
{
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,12 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace WinformDevFramework.IRepository
|
||||
{
|
||||
public interface Iw_BuyInWarehouseDetailRepository:IBaseRepository<w_BuyInWarehouseDetail>
|
||||
{
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,15 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace WinformDevFramework.IRepository
|
||||
{
|
||||
public interface Iw_BuyInWarehouseRepository:IBaseRepository<w_BuyInWarehouse>
|
||||
{
|
||||
int AddBuyInWarehouseInfo(w_BuyInWarehouse buy, List<w_BuyInWarehouseDetail> detail);
|
||||
bool UpdateBuyInWarehouseInfo(w_BuyInWarehouse buy, List<w_BuyInWarehouseDetail> detail);
|
||||
bool DeleteBuyInWarehouseInfo(w_BuyInWarehouse buy);
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,16 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace WinformDevFramework.IRepository
|
||||
{
|
||||
public interface Iw_BuyRepository:IBaseRepository<w_Buy>
|
||||
{
|
||||
int AddBuyInfo(w_Buy buy,List<w_BuyDetail> detail);
|
||||
bool UpdateBuyInfo(w_Buy buy, List<w_BuyDetail> detail);
|
||||
bool DeleteBuyInfo(w_Buy buy);
|
||||
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,12 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace WinformDevFramework.IRepository
|
||||
{
|
||||
public interface Iw_BuyReturnDetailRepository:IBaseRepository<w_BuyReturnDetail>
|
||||
{
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,12 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace WinformDevFramework.IRepository
|
||||
{
|
||||
public interface Iw_BuyReturnOutWarehouseDetailRepository:IBaseRepository<w_BuyReturnOutWarehouseDetail>
|
||||
{
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,16 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace WinformDevFramework.IRepository
|
||||
{
|
||||
public interface Iw_BuyReturnOutWarehouseRepository:IBaseRepository<w_BuyReturnOutWarehouse>
|
||||
{
|
||||
int AddBuyOutWarehouseInfo(w_BuyReturnOutWarehouse buy, List<w_BuyReturnOutWarehouseDetail> detail);
|
||||
bool UpdateBuyOutWarehouseInfo(w_BuyReturnOutWarehouse buy, List<w_BuyReturnOutWarehouseDetail> detail);
|
||||
bool DeleteBuyOutWarehouseInfo(w_BuyReturnOutWarehouse buy);
|
||||
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,14 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace WinformDevFramework.IRepository
|
||||
{
|
||||
public interface Iw_BuyReturnRepository:IBaseRepository<w_BuyReturn>
|
||||
{
|
||||
int AddBuyReturnInfo(w_BuyReturn buyReturn, List<w_BuyReturnDetail> detail);
|
||||
bool UpdateBuyReturnInfo(w_BuyReturn buyReturn, List<w_BuyReturnDetail> detail);
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,12 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace WinformDevFramework.IRepository
|
||||
{
|
||||
public interface Iw_OtherIncomeRepository:IBaseRepository<w_OtherIncome>
|
||||
{
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,12 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace WinformDevFramework.IRepository
|
||||
{
|
||||
public interface Iw_OtherOutlayRepository:IBaseRepository<w_OtherOutlay>
|
||||
{
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,12 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace WinformDevFramework.IRepository
|
||||
{
|
||||
public interface Iw_PaymentDetailRepository:IBaseRepository<w_PaymentDetail>
|
||||
{
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,15 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace WinformDevFramework.IRepository
|
||||
{
|
||||
public interface Iw_PaymentRepository:IBaseRepository<w_Payment>
|
||||
{
|
||||
int AddPaymentInfo(w_Payment buy, List<w_PaymentDetail> detail);
|
||||
bool UpdatePaymentInfo(w_Payment buy, List<w_PaymentDetail> detail);
|
||||
bool DeletePaymentInfo(w_Payment buy);
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,12 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace WinformDevFramework.IRepository
|
||||
{
|
||||
public interface Iw_ReceivableDetailRepository:IBaseRepository<w_ReceivableDetail>
|
||||
{
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,15 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace WinformDevFramework.IRepository
|
||||
{
|
||||
public interface Iw_ReceivableRepository:IBaseRepository<w_Receivable>
|
||||
{
|
||||
int AddReceivableInfo(w_Receivable buy, List<w_ReceivableDetail> detail);
|
||||
bool UpdateReceivableInfo(w_Receivable buy, List<w_ReceivableDetail> detail);
|
||||
bool DeleteReceivableInfo(w_Receivable buy);
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,12 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace WinformDevFramework.IRepository
|
||||
{
|
||||
public interface Iw_SaleDetailRepository:IBaseRepository<w_SaleDetail>
|
||||
{
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,12 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace WinformDevFramework.IRepository
|
||||
{
|
||||
public interface Iw_SaleOutWarehouseDetailRepository:IBaseRepository<w_SaleOutWarehouseDetail>
|
||||
{
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,16 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace WinformDevFramework.IRepository
|
||||
{
|
||||
public interface Iw_SaleOutWarehouseRepository:IBaseRepository<w_SaleOutWarehouse>
|
||||
{
|
||||
int AddSaleOutWarehouseInfo(w_SaleOutWarehouse buy, List<w_SaleOutWarehouseDetail> detail);
|
||||
bool UpdateSaleOutWarehouseInfo(w_SaleOutWarehouse buy, List<w_SaleOutWarehouseDetail> detail);
|
||||
bool DeleteSaleOutWarehouseInfo(w_SaleOutWarehouse buy);
|
||||
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,14 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace WinformDevFramework.IRepository
|
||||
{
|
||||
public interface Iw_SaleRepository:IBaseRepository<w_Sale>
|
||||
{
|
||||
int AddSaleInfo(w_Sale buy, List<w_SaleDetail> detail);
|
||||
bool UpdateSaleInfo(w_Sale buy, List<w_SaleDetail> detail);
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,12 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace WinformDevFramework.IRepository
|
||||
{
|
||||
public interface Iw_SaleReturnDetailRepository:IBaseRepository<w_SaleReturnDetail>
|
||||
{
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,12 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace WinformDevFramework.IRepository
|
||||
{
|
||||
public interface Iw_SaleReturnInWarehouseDetailRepository:IBaseRepository<w_SaleReturnInWarehouseDetail>
|
||||
{
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,16 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace WinformDevFramework.IRepository
|
||||
{
|
||||
public interface Iw_SaleReturnInWarehouseRepository:IBaseRepository<w_SaleReturnInWarehouse>
|
||||
{
|
||||
int AddSaleReturnInWarehouseInfo(w_SaleReturnInWarehouse buy, List<w_SaleReturnInWarehouseDetail> detail);
|
||||
bool UpdateSaleReturnInWarehouseInfo(w_SaleReturnInWarehouse buy, List<w_SaleReturnInWarehouseDetail> detail);
|
||||
bool DeleteSaleReturnInWarehouseInfo(w_SaleReturnInWarehouse buy);
|
||||
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,14 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace WinformDevFramework.IRepository
|
||||
{
|
||||
public interface Iw_SaleReturnRepository:IBaseRepository<w_SaleReturn>
|
||||
{
|
||||
int AddSaleReturnInfo(w_SaleReturn buy, List<w_SaleReturnDetail> detail);
|
||||
bool UpdateSaleReturnInfo(w_SaleReturn buy, List<w_SaleReturnDetail> detail);
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,12 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace WinformDevFramework.IRepository
|
||||
{
|
||||
public interface IsysDeptRepository:IBaseRepository<sysDept>
|
||||
{
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,12 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace WinformDevFramework.IRepository
|
||||
{
|
||||
public interface Iw_OtherInWarehouseDetailRepository:IBaseRepository<w_OtherInWarehouseDetail>
|
||||
{
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,16 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace WinformDevFramework.IRepository
|
||||
{
|
||||
public interface Iw_OtherInWarehouseRepository:IBaseRepository<w_OtherInWarehouse>
|
||||
{
|
||||
int AddOtherInWarehouseInfo(w_OtherInWarehouse buy, List<w_OtherInWarehouseDetail> detail);
|
||||
bool UpdateOtherInWarehouseInfo(w_OtherInWarehouse buy, List<w_OtherInWarehouseDetail> detail);
|
||||
bool DeleteOtherInWarehouseInfo(w_OtherInWarehouse buy);
|
||||
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,12 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace WinformDevFramework.IRepository
|
||||
{
|
||||
public interface Iw_OtherOutWarehouseDetailRepository:IBaseRepository<w_OtherOutWarehouseDetail>
|
||||
{
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,15 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace WinformDevFramework.IRepository
|
||||
{
|
||||
public interface Iw_OtherOutWarehouseRepository:IBaseRepository<w_OtherOutWarehouse>
|
||||
{
|
||||
int AddOtherOutWarehouseInfo(w_OtherOutWarehouse buy, List<w_OtherOutWarehouseDetail> detail);
|
||||
bool UpdateOtherOutWarehouseInfo(w_OtherOutWarehouse buy, List<w_OtherOutWarehouseDetail> detail);
|
||||
bool DeleteOtherOutWarehouseInfo(w_OtherOutWarehouse buy);
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,15 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using WinformDevFramework.Models;
|
||||
|
||||
|
||||
namespace WinformDevFramework.IServices
|
||||
{
|
||||
public interface Iw_CustomerServices: IBaseServices<w_Customer>
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,15 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using WinformDevFramework.Models;
|
||||
|
||||
|
||||
namespace WinformDevFramework.IServices
|
||||
{
|
||||
public interface IW_GoodsServices: IBaseServices<W_Goods>
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,15 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using WinformDevFramework.Models;
|
||||
|
||||
|
||||
namespace WinformDevFramework.IServices
|
||||
{
|
||||
public interface Iw_SettlementAccountServices: IBaseServices<w_SettlementAccount>
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,15 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using WinformDevFramework.Models;
|
||||
|
||||
|
||||
namespace WinformDevFramework.IServices
|
||||
{
|
||||
public interface Iw_SupplierServices: IBaseServices<w_Supplier>
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,15 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using WinformDevFramework.Models;
|
||||
|
||||
|
||||
namespace WinformDevFramework.IServices
|
||||
{
|
||||
public interface Iw_Warehouseervices: IBaseServices<w_Warehouse>
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,15 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using WinformDevFramework.Models;
|
||||
|
||||
|
||||
namespace WinformDevFramework.IServices
|
||||
{
|
||||
public interface Iw_BuyDetailServices: IBaseServices<w_BuyDetail>
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,15 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using WinformDevFramework.Models;
|
||||
|
||||
|
||||
namespace WinformDevFramework.IServices
|
||||
{
|
||||
public interface Iw_BuyInWarehouseDetailServices: IBaseServices<w_BuyInWarehouseDetail>
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,17 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using WinformDevFramework.Models;
|
||||
|
||||
|
||||
namespace WinformDevFramework.IServices
|
||||
{
|
||||
public interface Iw_BuyInWarehouseServices: IBaseServices<w_BuyInWarehouse>
|
||||
{
|
||||
int AddBuyInWarehouseInfo(w_BuyInWarehouse buy, List<w_BuyInWarehouseDetail> detail);
|
||||
bool UpdateBuyInWarehouseInfo(w_BuyInWarehouse buy, List<w_BuyInWarehouseDetail> detail);
|
||||
bool DeleteBuyInWarehouseInfo(w_BuyInWarehouse buy);
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,15 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using WinformDevFramework.Models;
|
||||
|
||||
|
||||
namespace WinformDevFramework.IServices
|
||||
{
|
||||
public interface Iw_BuyReturnDetailServices: IBaseServices<w_BuyReturnDetail>
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,15 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using WinformDevFramework.Models;
|
||||
|
||||
|
||||
namespace WinformDevFramework.IServices
|
||||
{
|
||||
public interface Iw_BuyReturnOutWarehouseDetailServices: IBaseServices<w_BuyReturnOutWarehouseDetail>
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,17 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using WinformDevFramework.Models;
|
||||
|
||||
|
||||
namespace WinformDevFramework.IServices
|
||||
{
|
||||
public interface Iw_BuyReturnOutWarehouseServices: IBaseServices<w_BuyReturnOutWarehouse>
|
||||
{
|
||||
int AddBuyOutWarehouseInfo(w_BuyReturnOutWarehouse buy, List<w_BuyReturnOutWarehouseDetail> detail);
|
||||
bool UpdateBuyOutWarehouseInfo(w_BuyReturnOutWarehouse buy, List<w_BuyReturnOutWarehouseDetail> detail);
|
||||
bool DeleteBuyOutWarehouseInfo(w_BuyReturnOutWarehouse buy);
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,16 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using WinformDevFramework.Models;
|
||||
|
||||
|
||||
namespace WinformDevFramework.IServices
|
||||
{
|
||||
public interface Iw_BuyReturnServices: IBaseServices<w_BuyReturn>
|
||||
{
|
||||
int AddBuyReturnInfo(w_BuyReturn buy, List<w_BuyReturnDetail> detail);
|
||||
bool UpdateBuyReturnInfo(w_BuyReturn buy, List<w_BuyReturnDetail> detail);
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,18 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using WinformDevFramework.Models;
|
||||
|
||||
|
||||
namespace WinformDevFramework.IServices
|
||||
{
|
||||
public interface Iw_BuyServices: IBaseServices<w_Buy>
|
||||
{
|
||||
int AddBuyInfo(w_Buy buy, List<w_BuyDetail> detail);
|
||||
bool UpdateBuyInfo(w_Buy buy, List<w_BuyDetail> detail);
|
||||
|
||||
bool DeleteBuyInfo(w_Buy buy);
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,15 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using WinformDevFramework.Models;
|
||||
|
||||
|
||||
namespace WinformDevFramework.IServices
|
||||
{
|
||||
public interface Iw_OtherIncomeServices: IBaseServices<w_OtherIncome>
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,15 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using WinformDevFramework.Models;
|
||||
|
||||
|
||||
namespace WinformDevFramework.IServices
|
||||
{
|
||||
public interface Iw_OtherOutlayServices: IBaseServices<w_OtherOutlay>
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,15 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using WinformDevFramework.Models;
|
||||
|
||||
|
||||
namespace WinformDevFramework.IServices
|
||||
{
|
||||
public interface Iw_PaymentDetailServices: IBaseServices<w_PaymentDetail>
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,18 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using WinformDevFramework.Models;
|
||||
|
||||
|
||||
namespace WinformDevFramework.IServices
|
||||
{
|
||||
public interface Iw_PaymentServices: IBaseServices<w_Payment>
|
||||
{
|
||||
int AddPaymentInfo(w_Payment buy, List<w_PaymentDetail> detail);
|
||||
bool UpdatePaymentInfo(w_Payment buy, List<w_PaymentDetail> detail);
|
||||
|
||||
bool DeletePaymentInfo(w_Payment buy);
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,15 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using WinformDevFramework.Models;
|
||||
|
||||
|
||||
namespace WinformDevFramework.IServices
|
||||
{
|
||||
public interface Iw_ReceivableDetailServices: IBaseServices<w_ReceivableDetail>
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,18 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using WinformDevFramework.Models;
|
||||
|
||||
|
||||
namespace WinformDevFramework.IServices
|
||||
{
|
||||
public interface Iw_ReceivableServices: IBaseServices<w_Receivable>
|
||||
{
|
||||
int AddReceivableInfo(w_Receivable buy, List<w_ReceivableDetail> detail);
|
||||
bool UpdateReceivableInfo(w_Receivable buy, List<w_ReceivableDetail> detail);
|
||||
bool DeleteReceivableInfo(w_Receivable buy);
|
||||
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,15 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using WinformDevFramework.Models;
|
||||
|
||||
|
||||
namespace WinformDevFramework.IServices
|
||||
{
|
||||
public interface Iw_SaleDetailServices: IBaseServices<w_SaleDetail>
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,15 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using WinformDevFramework.Models;
|
||||
|
||||
|
||||
namespace WinformDevFramework.IServices
|
||||
{
|
||||
public interface Iw_SaleOutWarehouseDetailServices: IBaseServices<w_SaleOutWarehouseDetail>
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,17 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using WinformDevFramework.Models;
|
||||
|
||||
|
||||
namespace WinformDevFramework.IServices
|
||||
{
|
||||
public interface Iw_SaleOutWarehouseServices: IBaseServices<w_SaleOutWarehouse>
|
||||
{
|
||||
int AddSaleOutWarehouseInfo(w_SaleOutWarehouse buy, List<w_SaleOutWarehouseDetail> detail);
|
||||
bool UpdateSaleOutWarehouseInfo(w_SaleOutWarehouse buy, List<w_SaleOutWarehouseDetail> detail);
|
||||
bool DeleteSaleOutWarehouseInfo(w_SaleOutWarehouse buy);
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,15 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using WinformDevFramework.Models;
|
||||
|
||||
|
||||
namespace WinformDevFramework.IServices
|
||||
{
|
||||
public interface Iw_SaleReturnDetailServices: IBaseServices<w_SaleReturnDetail>
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,15 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using WinformDevFramework.Models;
|
||||
|
||||
|
||||
namespace WinformDevFramework.IServices
|
||||
{
|
||||
public interface Iw_SaleReturnInWarehouseDetailServices: IBaseServices<w_SaleReturnInWarehouseDetail>
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,17 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using WinformDevFramework.Models;
|
||||
|
||||
|
||||
namespace WinformDevFramework.IServices
|
||||
{
|
||||
public interface Iw_SaleReturnInWarehouseServices: IBaseServices<w_SaleReturnInWarehouse>
|
||||
{
|
||||
int AddSaleReturnInWarehouseInfo(w_SaleReturnInWarehouse buy, List<w_SaleReturnInWarehouseDetail> detail);
|
||||
bool UpdateSaleReturnInWarehouseInfo(w_SaleReturnInWarehouse buy, List<w_SaleReturnInWarehouseDetail> detail);
|
||||
bool DeleteSaleReturnInWarehouseInfo(w_SaleReturnInWarehouse buy);
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,16 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using WinformDevFramework.Models;
|
||||
|
||||
|
||||
namespace WinformDevFramework.IServices
|
||||
{
|
||||
public interface Iw_SaleReturnServices: IBaseServices<w_SaleReturn>
|
||||
{
|
||||
int AddSaleReturnInfo(w_SaleReturn buy, List<w_SaleReturnDetail> detail);
|
||||
bool UpdateSaleReturnInfo(w_SaleReturn buy, List<w_SaleReturnDetail> detail);
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,16 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using WinformDevFramework.Models;
|
||||
|
||||
|
||||
namespace WinformDevFramework.IServices
|
||||
{
|
||||
public interface Iw_SaleServices: IBaseServices<w_Sale>
|
||||
{
|
||||
int AddSaleInfo(w_Sale buy, List<w_SaleDetail> detail);
|
||||
bool UpdateSaleInfo(w_Sale buy, List<w_SaleDetail> detail);
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,15 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using WinformDevFramework.Models;
|
||||
|
||||
|
||||
namespace WinformDevFramework.IServices
|
||||
{
|
||||
public interface IsysDeptServices: IBaseServices<sysDept>
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,15 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using WinformDevFramework.Models;
|
||||
|
||||
|
||||
namespace WinformDevFramework.IServices
|
||||
{
|
||||
public interface Iw_OtherInWarehouseDetailServices: IBaseServices<w_OtherInWarehouseDetail>
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,18 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using WinformDevFramework.Models;
|
||||
|
||||
|
||||
namespace WinformDevFramework.IServices
|
||||
{
|
||||
public interface Iw_OtherInWarehouseServices: IBaseServices<w_OtherInWarehouse>
|
||||
{
|
||||
int AddOtherInWarehouseInfo(w_OtherInWarehouse buy, List<w_OtherInWarehouseDetail> detail);
|
||||
bool UpdateOtherInWarehouseInfo(w_OtherInWarehouse buy, List<w_OtherInWarehouseDetail> detail);
|
||||
bool DeleteOtherInWarehouseInfo(w_OtherInWarehouse buy);
|
||||
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,15 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using WinformDevFramework.Models;
|
||||
|
||||
|
||||
namespace WinformDevFramework.IServices
|
||||
{
|
||||
public interface Iw_OtherOutWarehouseDetailServices: IBaseServices<w_OtherOutWarehouseDetail>
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,17 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using WinformDevFramework.Models;
|
||||
|
||||
|
||||
namespace WinformDevFramework.IServices
|
||||
{
|
||||
public interface Iw_OtherOutWarehouseServices: IBaseServices<w_OtherOutWarehouse>
|
||||
{
|
||||
int AddOtherOutWarehouseInfo(w_OtherOutWarehouse buy, List<w_OtherOutWarehouseDetail> detail);
|
||||
bool UpdateOtherOutWarehouseInfo(w_OtherOutWarehouse buy, List<w_OtherOutWarehouseDetail> detail);
|
||||
bool DeleteOtherOutWarehouseInfo(w_OtherOutWarehouse buy);
|
||||
}
|
||||
}
|
||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue