Added GSTNumber in UpdateOrganizaton DTO
This commit is contained in:
parent
5b57c93a21
commit
4cec5860ec
@ -7,6 +7,7 @@
|
||||
public required string ContactPerson { get; set; }
|
||||
public required string Address { get; set; }
|
||||
public required string ContactNumber { get; set; }
|
||||
public string? GSTNumber { get; set; }
|
||||
public List<Guid>? ServiceIds { get; set; }
|
||||
}
|
||||
}
|
||||
|
||||
@ -976,6 +976,7 @@ namespace Marco.Pms.Services.Service
|
||||
organization.Name = model.Name;
|
||||
organization.ContactPerson = model.ContactPerson;
|
||||
organization.Address = model.Address;
|
||||
organization.GSTNumber = model.GSTNumber;
|
||||
organization.ContactNumber = model.ContactNumber;
|
||||
organization.UpdatedById = loggedInEmployee.Id;
|
||||
organization.UpdatedAt = DateTime.UtcNow;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user