public MovementListMdl(MovementListTbl mdl) { Id = mdl.Id; MoveTitle = mdl.MoveTitle; ImageName = mdl.ImageName; Description = mdl.Description; Selected = mdl.Selected; MoveIcon = mdl.MoveIcon; Duration = mdl.Duration; }
public MovementListTbl GetTable() { MovementListTbl movementListTbl = new MovementListTbl(); movementListTbl.Id = Id; movementListTbl.MoveTitle = MoveTitle; movementListTbl.Selected = Selected; movementListTbl.MoveIcon = MoveIcon; movementListTbl.ImageName = ImageName; movementListTbl.Description = Description; movementListTbl.Duration = Duration; return(movementListTbl); }