Added Customer, Contact and Address with Service
Labeled all service to enable assembly scanning
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
namespace LiteCharms.Features.MidrandBooks.Customers.Entities;
|
||||
|
||||
[EntityTypeConfiguration<CustomerConfiguration, Customer>]
|
||||
public class Customer : Models.Customer
|
||||
{
|
||||
public virtual ICollection<Contact> Contacts { get; set; } = [];
|
||||
|
||||
public virtual ICollection<Address> Addresses { get; set; } = [];
|
||||
}
|
||||
Reference in New Issue
Block a user