Skip to content

Commit

Permalink
add service
Browse files Browse the repository at this point in the history
  • Loading branch information
Tohirjon-Odilov committed Mar 3, 2024
1 parent ca96465 commit 39cddbf
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Exam.StockManagement.Application.Abstractions.IServices
{
public interface ICategoryService
{
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Exam.StockManagement.Application.Abstractions.IServices
{
public interface IProductService
{
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Exam.StockManagement.Application.Abstractions.IServices
{
public interface IStatsService
{
}
}

0 comments on commit 39cddbf

Please sign in to comment.