Beispiel #1
0
 public void InsertEvo(EvoDto evo)
 {
     _evoRepository.Add(new Domain.Evo()
     {
         Name     = evo.Name,
         IsActive = evo.IsActive
     });
 }
Beispiel #2
0
 public void AddEvo(EvoDto evo)
 {
     evo.IsActive  = true;
     evo.IsDeleted = true;
     _evoService.InsertEvo(evo);
 }