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
16 lines
459 B
namespace CounsellorBL.BLStructure.SYS
|
|
{
|
|
using CounsellorBL.Common;
|
|
using OT.COM.SignalerMessage;
|
|
using SoldierData.EnterprizeV4;
|
|
|
|
class ParamService : DetailDataTableTemplate<tb_sys_param, tb_sys_paramcatalog>
|
|
{
|
|
protected override string DetailColumnNameToMasterUID => tb_sys_param.CN_PARAMCATALOG;
|
|
|
|
[Auth(false)]
|
|
public new CResponseMessage Read(CRequestMessage i_crmInput) => base.Read(i_crmInput);
|
|
|
|
|
|
}
|
|
}
|