Пример #1
0
        public int Insert(GK_OA_ChangeStationNoticeModel ObjModel, SqlTransaction Transaction)
        {
            GK_OA_ChangeStationNoticeDAL edal = new GK_OA_ChangeStationNoticeDAL(Transaction);

            return(edal.Insert(ObjModel));
        }
Пример #2
0
        public List <GK_OA_ChangeStationNoticeModel> GetModels(GK_OA_ChangeStationNoticeQueryModel ObjQueryModel, SqlTransaction Transaction)
        {
            GK_OA_ChangeStationNoticeDAL edal = new GK_OA_ChangeStationNoticeDAL(Transaction);

            return(edal.Select(ObjQueryModel));
        }
Пример #3
0
        public GK_OA_ChangeStationNoticeModel GetModel(int Code, SqlTransaction Transaction)
        {
            GK_OA_ChangeStationNoticeDAL edal = new GK_OA_ChangeStationNoticeDAL(Transaction);

            return(edal.GetModel(Code));
        }
Пример #4
0
        public List <GK_OA_ChangeStationNoticeModel> GetModels(SqlTransaction Transaction)
        {
            GK_OA_ChangeStationNoticeDAL edal = new GK_OA_ChangeStationNoticeDAL(Transaction);

            return(edal.Select());
        }
Пример #5
0
        public int Delete(int Code, SqlTransaction Transaction)
        {
            GK_OA_ChangeStationNoticeDAL edal = new GK_OA_ChangeStationNoticeDAL(Transaction);

            return(edal.Delete(Code));
        }