OutKiller 1.0.0

dotnet add package OutKiller --version 1.0.0
NuGet\Install-Package OutKiller -Version 1.0.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="OutKiller" Version="1.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add OutKiller --version 1.0.0
#r "nuget: OutKiller, 1.0.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install OutKiller as a Cake Addin
#addin nuget:?package=OutKiller&version=1.0.0

// Install OutKiller as a Cake Tool
#tool nuget:?package=OutKiller&version=1.0.0

OutKillerProject

This class aim is that create standardization rules to functions return object. This structure has a few benefit like that I showed in below

Help you to code standartizion and coverage of code's purpose. Look at the "SampleApplication.Task/PersonTask.cs" class to see implementation.

Type Safety and Error Preventing (like not found rec on Db exception) Encoruge To use SOLID prencibles and develope execeture and private method in class

Here is the sample piece of code to show usage.

using SampleApplication.Models;
using ServiceResponse;
using System.Collections.Generic;
using System.Linq;
namespace SampleApplication.Task
{
    public class PersonTask
    {
        private List<Person> personList;
        public PersonTask()
        {
            personList = new List<Person>();
            Person personObj = new Person
            {
                Id = 1,
                Address = "Test",
                Age = 20,
                NameSurname = "CanBey"
            };
            Person personObj1 = new Person
            {
                Id = 2,
                Address = "Test1",
                Age = 21,
                NameSurname = "CanBey1"
            };
            personList.Add(personObj);
            personList.Add(personObj1);
        }
        public ServiceResult<Person> findPersonWithId(int id)
        {
            var foundedPerson = personList.FirstOrDefault(x => x.Id == id);
            return foundedPerson != null ? ServiceResult<Person>.SuccessResponse(foundedPerson) : ServiceResult<Person>.FailResponse("Record not found.");
        }
        public ServiceResult<List<Person>> getAllPersonWithHelper()
        {
            return ServiceResult<List<Person>>.SuccessResponse(personList);
        }
    }
}
Product Compatible and additional computed target framework versions.
.NET Framework net45 is compatible.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.0 1,079 6/4/2018