Added GSTNumber in UpdateOrganizaton DTO

This commit is contained in:
ashutosh.nehete 2025-11-15 15:57:22 +05:30
parent 5b57c93a21
commit 4cec5860ec
2 changed files with 2 additions and 0 deletions

View File

@ -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; }
}
}

View File

@ -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;