Exemplo n.º 1
0
        public async Task <IResult> AddAsync(Location location)
        {
            await _locationDao.AddAsync(location);

            return(new SuccessResult(true, ResultMessages.LocationAdded));
        }