You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
498 B
23 lines
498 B
using Dto;
|
|
using Entities;
|
|
using Shared;
|
|
|
|
namespace DbDataManager.Service;
|
|
|
|
public class InquiryDataService : IInquiryService<InquiryEntity>
|
|
{
|
|
public IEnumerable<InquiryEntity> GetInquiries(int page, int number)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public InquiryEntity GetInquiryById(int id)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public InquiryEntity GetInquiryByTitle(string title)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
} |