forked from ddrilling/AsbCloudServer
17 lines
431 B
C#
17 lines
431 B
C#
using System;
|
|
using System.Linq;
|
|
|
|
namespace AsbCloudDb.Model.DefaultData
|
|
{
|
|
internal class EntityFillerWellOperationCategory : EntityFiller<WellOperationCategory>
|
|
{
|
|
|
|
|
|
public override WellOperationCategory[] GetData()
|
|
=> WellOperationCategory.WorkStages
|
|
.Concat(WellOperationCategory.WorkTypes)
|
|
.Concat(WellOperationCategory.WorkCategories)
|
|
.ToArray();
|
|
}
|
|
}
|