Exemplo n.º 1
0
 public async Task Create(CreateAnimalInput input)
 {
     Logger.Info(string.Format("Creating a new animal with name: {0}", input.Name));
     var @animal = Animal.Create(AbpSession.GetTenantId(), input.Name, input.Owner, input.Age);
     await _animalManager.CreateAsync(@animal);
 }