Esempio n. 1
0
 private bool CopyCustomerToRealTimeDB(string business_id, Customer customer)
 {
     if (customer != null)
     {
         _fbCustomerRepository.Upsert(customer.business_id, customer);
     }
     return(true);
 }
Esempio n. 2
0
 public bool CreateCustomer(Domain.Entities.Customer customer)
 {
     _customerRepository.Upsert(customer.business_id, customer);
     return(true);
 }