コード例 #1
0
 public static ActionViewModel ToViewModel(this STM.Core.EntityLayer.Action entity)
 {
     return(new ActionViewModel
     {
         ActionId = entity.ActionId,
         ActionGroup = entity.ActionGroup,
         ActionType = entity.ActionType,
         ActionName = entity.ActionName,
         ActionGroupName = entity.ActionGroupName,
         ActionDescription = entity.ActionDescription,
         ActionRemarks = entity.ActionRemarks,
         CreatedBy = entity.CreatedBy,
         CreatedDate = entity.CreatedDate,
         UpdatedBy = entity.UpdatedBy,
         UpdatedDate = entity.UpdatedDate
     });
 }
コード例 #2
0
ファイル: ActionRepository.cs プロジェクト: rp3220/Pizza-API
 public Task <bool> UpdateAction(Action subscenario, int actionid, int actiongroupid)
 {
     throw new NotImplementedException();
 }
コード例 #3
0
ファイル: ActionRepository.cs プロジェクト: rp3220/Pizza-API
 public Task <bool> CreateAction(Action subscenario)
 {
     throw new NotImplementedException();
 }