public Task <IDomainResult <int> > GetNotFoundWithMessagesWhenExpectedNumberTask() => DomainResult.NotFoundTask <int>(new[] { "No, really not found", "Searched everywhere" });
 public Task <IDomainResult <int> > GetNotFoundWithMessageWhenExpectedNumberTask() => DomainResult.NotFoundTask <int>("No, really not found");
 public Task <IDomainResult <int> > GetNotFoundWithNoMessageWhenExpectedNumberTask() => DomainResult.NotFoundTask <int>();
 public Task <IDomainResult> GetNotFoundWithMessagesTask() => DomainResult.NotFoundTask(new[] { "No, really not found", "Searched everywhere" });
 public Task <IDomainResult> GetNotFoundWithMessageTask() => DomainResult.NotFoundTask("No, really not found");
 public Task <IDomainResult> GetNotFoundWithNoMessageTask() => DomainResult.NotFoundTask();