service

  1. Gric

    sum of all transactions?

    I'm stuck with Implementing method "TotalProvisionRevenue()" I need sum of all transactions provision . How can I get this data? using BankingSystem.Exceptions; using BankingSystem.Models; using BankingSystem.Repositories; using System; using System.Collections.Generic; using System.Linq...
  2. T

    Question Bind IP-Endpoint to Socket

    Hello everyone, on my local network, there is a udp broadcast sent by a server every 5 seconds. It is 120 Byte long.I am trying to set a socket in order to consume it: IPAddress ip = IPAddress.Parse("192.168.127.162"); IPEndPoint ipe = new IPEndPoint(ip, 55555); Socket socket = new...
Back
Top Bottom