Waste/Waste.Application/AccountInfo/AccountService.cs

18 lines
383 B
C#
Raw Normal View History

2021-04-30 14:52:42 +08:00
using Furion.DependencyInjection;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Waste.Application
{
public class AccountService : IAccountService, ITransient
{
public Task<int> LoginAsync(LoginModel model)
{
throw new NotImplementedException();
}
}
}