public Task <List <Cow> > Handle(GetAllCowsQuery request, CancellationToken cancellationToken)
 {
     return(_snapShotRepository.GetAllAsync());
 }