📄 precontractmanager.cs
字号:
//============================================================
// Producnt name: BoBoARTS.CodeMad
// Version: 1.0
// Coded by: Shen Bo (bo.shen@jb-aptech.com.cn)
// Auto generated at: 2008-9-18 17:05:51
//============================================================
using System;
using System.Collections.Generic;
using System.Text;
using Office.DAL;
using Office.Model;
namespace Office.BLL
{
public static partial class PreContractManager
{
public static PreContract AddPreContract(PreContract preContract)
{
return PreContractService.AddPreContract(preContract);
}
public static void DeletePreContract(PreContract preContract)
{
PreContractManager.DeletePreContract(preContract);
}
public static void DeletePreContractById(int preContractId)
{
PreContractManager.DeletePreContractById(preContractId);
}
public static void ModifyPreContract(PreContract preContract)
{
PreContractService.ModifyPreContract(preContract);
}
public static IList<PreContract> GetAllPreContracts()
{
return PreContractService.GetAllPreContracts();
}
public static PreContract GetPreContractByPreContractId(int preContractId)
{
return PreContractManager.GetPreContractByPreContractId(preContractId);
}
public static List<PreContract> GetPreContractIdByScheduleId(int ScheduleId)
{
return PreContractService.GetPreContractIdByScheduleId(ScheduleId);
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -