public async Task CreateCustomerSkill(CustomerSkill customerSkill)
 {
     await customerRepository.AddCustomerSkill(customerSkill);
 }
 public async Task AddCustomerSkill(CustomerSkill customerSkill)
 {
     await Context.CustomerSkills.AddAsync(customerSkill);
 }