Пример #1
0
        public async Task <FederationModel> Put(string id, [FromBody] CreateFederation value)
        {
            var command = new UpdateFederation
            {
                Id   = id,
                Name = value.Name,
            };

            return(await _service.Update(command));
        }
 public Task <FederationModel> Update(UpdateFederation command)
 {
     throw new NotImplementedException();
 }