13 lines
544 B
C#
13 lines
544 B
C#
namespace NetinaShop.Domain.Entities.Users;
|
|
|
|
public partial class UserAddress
|
|
{
|
|
public static UserAddress Create(string address, string postalCode, string receiverFullName,
|
|
string receiverPhoneNumber, float locationLat, float locationLong, string province, string city, string plaque,
|
|
string buildingUnit, Guid userId)
|
|
{
|
|
return new UserAddress(address, postalCode, receiverFullName, receiverPhoneNumber,
|
|
locationLat, locationLong, province, city, plaque, buildingUnit,
|
|
userId);
|
|
}
|
|
} |