示例#1
0
 public CustomerSevices(IAccountResponsitory User, IPasswordHasher passwordHasher, IStoreProduce StoreProduce, ICustomerResponsitory Customer)
 {
     _User           = User;
     _passwordHasher = passwordHasher;
     _StoreProduce   = StoreProduce;
     _Customer       = Customer;
 }
示例#2
0
 public RolesServices(IAccountResponsitory User, IStoreProduce StoreProduce, IRolesResponsitory Roles, IAspNetRoleResponsitory RolesNet)
 {
     _User         = User;
     _StoreProduce = StoreProduce;
     _Roles        = Roles;
     _RolesNet     = RolesNet;
 }
示例#3
0
 public SettingSevice(IAccountResponsitory User, IPasswordHasher passwordHasher, IStoreProduce StoreProduce, ICustomerResponsitory DashBoard, ISettingResponsitory Setting)
 {
     _User           = User;
     _passwordHasher = passwordHasher;
     _StoreProduce   = StoreProduce;
     _DashBoard      = DashBoard;
     _Setting        = Setting;
 }
示例#4
0
 public ChatLineSevices(IChatLineResponsitory ChatLine, IAccountResponsitory Account, IStoreProduce StoreProduce)
 {
     _ChatLine     = ChatLine;
     _Account      = Account;
     _StoreProduce = StoreProduce;
 }