DD.WellWorkover.Cloud/AsbCloudApp/Services/IMessageService.cs

13 lines
469 B
C#
Raw Normal View History

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);
DatesRangeDto GetMessagesDatesRange(int wellId);
2021-04-23 10:21:25 +05:00
void Insert(string uid, IEnumerable<TelemetryMessageDto> dtos);
}
}