public int Insert(GK_OA_ChangeStationNoticeModel ObjModel, SqlTransaction Transaction)
        {
            GK_OA_ChangeStationNoticeDAL edal = new GK_OA_ChangeStationNoticeDAL(Transaction);

            return(edal.Insert(ObjModel));
        }
        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));
        }
        public GK_OA_ChangeStationNoticeModel GetModel(int Code, SqlTransaction Transaction)
        {
            GK_OA_ChangeStationNoticeDAL edal = new GK_OA_ChangeStationNoticeDAL(Transaction);

            return(edal.GetModel(Code));
        }
        public List <GK_OA_ChangeStationNoticeModel> GetModels(SqlTransaction Transaction)
        {
            GK_OA_ChangeStationNoticeDAL edal = new GK_OA_ChangeStationNoticeDAL(Transaction);

            return(edal.Select());
        }
        public int Delete(int Code, SqlTransaction Transaction)
        {
            GK_OA_ChangeStationNoticeDAL edal = new GK_OA_ChangeStationNoticeDAL(Transaction);

            return(edal.Delete(Code));
        }