public static LinhVucCongViecInfo ToDataInfo(this LinhVucCongViec entity) { return(new LinhVucCongViecInfo { Id = entity.Id, Name = entity.Ten }); }
public static LinhVucCongViecResult ToDataResult(this LinhVucCongViec entity) { return(new LinhVucCongViecResult { Id = entity.Id, Ten = entity.Ten, MoTa = entity.MoTa, CreateDate = entity.CreateDate, CreatedBy = entity.CreatedBy, IsDeleted = entity.IsDeleted, LastUpdated = entity.LastUpdated, LastUpdatedBy = entity.LastUpdatedBy }); }
public static LinhVucCongViecInfo ToIfNotNullDataInfo(this LinhVucCongViec entity) { return(entity?.ToDataInfo()); }
public static LinhVucCongViecResult ToIfNotNullDataResult(this LinhVucCongViec entity) { return(entity?.ToDataResult()); }