コード例 #1
0
 public CustomerService(IUnitOfWork unitOfWork, NullCheckMethod nullCheckMethod, SearchFilterHealpers searchFilterHealpers, IEmailService emailService)
 {
     _unitOfWork           = unitOfWork;
     _nullCheckMethod      = nullCheckMethod;
     _searchFilterHealpers = searchFilterHealpers;
     _emailService         = emailService;
 }
コード例 #2
0
 public RepairService(IUnitOfWork unitOfWork, NullCheckMethod nullCheckMethod, IEmailService emailService, RepairMappingProfile repairMappingProfile)
 {
     _unitOfWork           = unitOfWork;
     _nullCheckMethod      = nullCheckMethod;
     _emailService         = emailService;
     _repairMappingProfile = repairMappingProfile;
 }
コード例 #3
0
#pragma warning disable AV1561 // Signature contains more than 3 parameters
            public ArgumentsInfo([NotNull] IOperation leftArgument, [NotNull] IOperation rightArgument,
                                 NullCheckMethod nullCheckMethod, NullCheckOperand nullCheckOperand)
            {
                LeftArgument     = leftArgument;
                RightArgument    = rightArgument;
                NullCheckMethod  = nullCheckMethod;
                NullCheckOperand = nullCheckOperand;
            }
コード例 #4
0
        public NullCheckScanResult([NotNull] IOperation target, NullCheckMethod method, NullCheckOperand operand)
        {
            Guard.NotNull(target, nameof(target));

            Target  = target;
            Method  = method;
            Operand = operand;
        }
コード例 #5
0
 public ProductService(IUnitOfWork unitOfWork, NullCheckMethod nullCheckMethod)
 {
     _unitOfWork      = unitOfWork;
     _nullCheckMethod = nullCheckMethod;
 }
コード例 #6
0
 public EmailService(IEmailSender emailSender, IUnitOfWork unitOfWork, NullCheckMethod nullCheckMethod)
 {
     _emailSender     = emailSender;
     _unitOfWork      = unitOfWork;
     _nullCheckMethod = nullCheckMethod;
 }
コード例 #7
0
 public SaparePartService(IUnitOfWork unitOfWork, NullCheckMethod nullCheckMethod, SaparePartMappingProfile saparePartMappingProfile)
 {
     _unitOfWork               = unitOfWork;
     _nullCheckMethod          = nullCheckMethod;
     _saparePartMappingProfile = saparePartMappingProfile;
 }