public async Task <int> insertCompMappingForIf(VcIfCompMapping vcIfCompMapping)
        {
            var result = await _vcIfCompMappingRepository.inertToAsync(vcIfCompMapping);

            return(await SaveDbContextAsync());
        }
 // # 7.
 public async void insertVcIfCompMapping(VcIfCompMapping vcIfCompMapping)
 {
     _vcIfCompMappingRepository.Add(vcIfCompMapping);
     await SaveDbContextAsync();
 }