9 lines
228 B
C#
9 lines
228 B
C#
|
|
namespace Brizco.Domain.Entities.Complex;
|
|||
|
|
|
|||
|
|
public partial class Complex
|
|||
|
|
{
|
|||
|
|
public static Complex Create(string name, string address, string supportPhone)
|
|||
|
|
{
|
|||
|
|
return new Complex(name,address,supportPhone);
|
|||
|
|
}
|
|||
|
|
}
|