2021-04-23 10:21:25 +05:00
|
|
|
|
using AsbCloudApp.Data;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
namespace AsbCloudApp.Services
|
|
|
|
|
{
|
|
|
|
|
public interface IMessageService
|
|
|
|
|
{
|
|
|
|
|
PaginationContainer<MessageDto> GetMessages(int wellId, IEnumerable<int> categoryids = null, DateTime begin = default, DateTime end = default, int skip = 0, int take = 32);
|
2021-05-14 17:02:29 +05:00
|
|
|
|
DatesRangeDto GetMessagesDatesRange(int wellId);
|
2021-04-23 10:21:25 +05:00
|
|
|
|
void Insert(string uid, IEnumerable<TelemetryMessageDto> dtos);
|
|
|
|
|
}
|
|
|
|
|
}
|