コード例 #1
0
ファイル: YF_UseCarFlowBLL.cs プロジェクト: riyuexing/rms
        public int Insert(YF_UseCarFlowModel ObjModel, SqlTransaction Transaction)
        {
            YF_UseCarFlowDAL wdal = new YF_UseCarFlowDAL(Transaction);

            return(wdal.Insert(ObjModel));
        }
コード例 #2
0
ファイル: YF_UseCarFlowBLL.cs プロジェクト: riyuexing/rms
        public List <YF_UseCarFlowModel> GetModels(SqlTransaction Transaction)
        {
            YF_UseCarFlowDAL wdal = new YF_UseCarFlowDAL(Transaction);

            return(wdal.Select());
        }
コード例 #3
0
ファイル: YF_UseCarFlowBLL.cs プロジェクト: riyuexing/rms
        public List <YF_UseCarFlowModel> GetModels(YF_UseCarFlowQueryModel ObjQueryModel, SqlTransaction Transaction)
        {
            YF_UseCarFlowDAL wdal = new YF_UseCarFlowDAL(Transaction);

            return(wdal.Select(ObjQueryModel));
        }
コード例 #4
0
ファイル: YF_UseCarFlowBLL.cs プロジェクト: riyuexing/rms
        public List <YF_UseCarFlowModel> GetModels(SqlConnection Connection)
        {
            YF_UseCarFlowDAL wdal = new YF_UseCarFlowDAL(Connection);

            return(wdal.Select());
        }
コード例 #5
0
ファイル: YF_UseCarFlowBLL.cs プロジェクト: riyuexing/rms
        public YF_UseCarFlowModel GetModel(int Code, SqlTransaction Transaction)
        {
            YF_UseCarFlowDAL wdal = new YF_UseCarFlowDAL(Transaction);

            return(wdal.GetModel(Code));
        }
コード例 #6
0
ファイル: YF_UseCarFlowBLL.cs プロジェクト: riyuexing/rms
        public YF_UseCarFlowModel GetModel(int Code, SqlConnection Connection)
        {
            YF_UseCarFlowDAL wdal = new YF_UseCarFlowDAL(Connection);

            return(wdal.GetModel(Code));
        }
コード例 #7
0
ファイル: YF_UseCarFlowBLL.cs プロジェクト: riyuexing/rms
        public int Update(YF_UseCarFlowModel ObjModel, SqlTransaction Transaction)
        {
            YF_UseCarFlowDAL wdal = new YF_UseCarFlowDAL(Transaction);

            return(wdal.Update(ObjModel));
        }
コード例 #8
0
ファイル: YF_UseCarFlowBLL.cs プロジェクト: riyuexing/rms
        public int Delete(int Code, SqlTransaction Transaction)
        {
            YF_UseCarFlowDAL wdal = new YF_UseCarFlowDAL(Transaction);

            return(wdal.Delete(Code));
        }