コード例 #1
0
        public long ManageSessionMeterialMap_CreateDAL(SessionMeterialsMapping _mapping)
        {
            var parameters = new[] { ParamBuilder.Par("ID", 0) };

            return(ExecuteInt64withOutPutparameterSp("ManageSessionCourseMeterialMap_Create", parameters,
                                                     ParamBuilder.Par("CourseMaterialID", _mapping.CourseMaterialID),
                                                     ParamBuilder.Par("SessionID", _mapping.SessionID),
                                                     ParamBuilder.Par("CreatedBy", _mapping.CreatedBy),
                                                     ParamBuilder.Par("CreatedDate", _mapping.CreatedOn)
                                                     ));
        }
コード例 #2
0
 public long ManageSessionMeterialMap_CreateBAL(SessionMeterialsMapping _mapping) => _ConfigurationDAL.ManageSessionMeterialMap_CreateDAL(_mapping);