public void Create(Guid SellerId, Guid CustomerId) { Chat chat = new Chat { SellerId = SellerId, CustomerId = CustomerId }; context.Add(chat); context.SaveChanges(); }
public void Add(Customer customer) { context.Add(customer); context.SaveChanges(); }