I’m writing a small app for a demonstration purpose. What I have is a domain model where I have a Customer, I also have CustomerRepository. public class Customer { public int ID { get; set; } public string CompanyName { get; set; } public string FirstName...