123456789101112131415161718192021 |
- using PL.Base;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Data;
- using FMS.BLL;
- using FMS.ServiceList;
- namespace FMS.SO
- {
- public class BdServiceKmLoad : BaseSO
- {
- public override void Execute(EciContext context)
- {
- this.ServiceId = FMSService.BdServiceKmLoad;
- context.Response.DataTable = BdServiceKmBLL.Instance.Load(context.BLLContext,context.Request.Key);
- }
- }
- }
|