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.

12 lines
346 B

  1. namespace CounsellorBL.BLStructure.SYS
  2. {
  3. using CounsellorBL.Common;
  4. using OT.COM.SignalerMessage;
  5. using SoldierData.EnterprizeV4;
  6. class ModuleService : SingleDataTableTemplate<tb_sys_module>
  7. {
  8. [Auth(false)]
  9. public new CResponseMessage Read(CRequestMessage i_crmInput) => base.Read(i_crmInput);
  10. }
  11. }