Skip to content

Instantly share code, notes, and snippets.

@PadreSVK
Created December 14, 2019 22:22
Show Gist options
  • Save PadreSVK/4972e03d494b71f655a36313bcd4ce11 to your computer and use it in GitHub Desktop.
Save PadreSVK/4972e03d494b71f655a36313bcd4ce11 to your computer and use it in GitHub Desktop.
statistic service interface
using System.Threading.Tasks;
namespace BL
{
public interface IStatisticService
{
Task<double> GetAveragePressureByCityAsync(int cityId);
Task<double> GetAverageTemperatureByCityAsync(int cityId);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment