Пример #1
0
 public async Task CreateRelation(CreateRelationDTO input)
 {
     try
     {
         await _relationService.CreateRelation(input);
     }
     catch (Exception)
     {
         throw;
     }
 }