You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
459 B

  1. namespace CounsellorBL.BLStructure.SYS
  2. {
  3. using CounsellorBL.Common;
  4. using OT.COM.SignalerMessage;
  5. using SoldierData.EnterprizeV4;
  6. class ParamService : DetailDataTableTemplate<tb_sys_param, tb_sys_paramcatalog>
  7. {
  8. protected override string DetailColumnNameToMasterUID => tb_sys_param.CN_PARAMCATALOG;
  9. [Auth(false)]
  10. public new CResponseMessage Read(CRequestMessage i_crmInput) => base.Read(i_crmInput);
  11. }
  12. }