DD.WellWorkover.Cloud/AsbCloudDb/Model/DefaultData/EntityFillerCompany.cs
ngfrolov 623a64fa25 Rafactor DB context default data.
Modify WellOperation table (and defaults)
2022-08-08 16:45:20 +05:00

11 lines
285 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

namespace AsbCloudDb.Model.DefaultData
{
internal class EntityFillerCompany : EntityFiller<Company>
{
protected override Company[] GetData() => new Company[]
{
new (){ Id = 1, Caption = "ООО \"АСБ\"", IdCompanyType = 3},
};
}
}