public bool DeleteByID(Guid entityID) { Station station = GetByID(entityID); return(_stationDAL.Delete(station) > 0); }
public async Task <long> Delete(long id) { return(await _stationDAL.Delete(id)); }